home *** CD-ROM | disk | FTP | other *** search
- /*//////////////////////////////////////////////////////////////////////
- Filename: ids-tools.js
- Company Name: Computer Associates International, Inc.
- Legal Copyright: Copyright (c) Computer Associates International, Inc.
- Author: Marek Matus (marek.matus@ca.com)
- Product: Tiny Firewall
- Description: useful javascript code for IDS
- ///////////////////////////////////////////////////////////////////////*/
-
- function IDSIP_ShowEditDlg(strObjID, bClientParser)
- {
- var arParams = new Array();
-
- arParams[0] = external;
- arParams[1] = strObjID;
- arParams[2] = bClientParser;
-
- var sFeatures="dialogHeight: 330px; dialogWidth: 600px; help:no; status:no; resizable:no; center:yes;";
-
- var arRetVal = window.showModalDialog( 'ids-ipaddr-edit.html', arParams, sFeatures );
-
- if ( arRetVal && arRetVal[0] )
- return arRetVal[0];
- else
- '';
- }
-